type runtime.gcBitsArena
12 uses
runtime (current package)
mheap.go#L2365: type gcBitsArena struct {
mheap.go#L2369: next *gcBitsArena
mheap.go#L2375: free *gcBitsArena
mheap.go#L2376: next *gcBitsArena // Read atomically. Write atomically under lock.
mheap.go#L2377: current *gcBitsArena
mheap.go#L2378: previous *gcBitsArena
mheap.go#L2383: func (b *gcBitsArena) tryAlloc(bytes uintptr) *gcBits {
mheap.go#L2404: head := (*gcBitsArena)(atomic.Loadp(unsafe.Pointer(&gcBitsArenas.next)))
mheap.go#L2495: func newArenaMayUnlock() *gcBitsArena {
mheap.go#L2496: var result *gcBitsArena
mheap.go#L2499: result = (*gcBitsArena)(sysAlloc(gcBitsChunkBytes, &memstats.gcMiscSys))
mheap.go#L2512: if unsafe.Offsetof(gcBitsArena{}.bits)&7 == 0 {
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |